* {@inheritDoc}
*/
public int[] getNonZeroIndices() {
return map.keys();
}
/**
* {@inheritDoc}
*/
public int[] getNonZeroIndices() {
int[] nz = map.keys();
Arrays.sort(nz);
return nz;
}
/**